home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000087_fdc@columbia.edu_Fri Jan 23 11:40:11 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Changing ftp port to non-standard
  5. Date: 23 Jan 2004 16:09:26 GMT
  6. Organization: Columbia University
  7. Lines: 45
  8. Message-ID: <slrnc12hpm.ct0.fdc@sesame.cc.columbia.edu>
  9. References: <67afd408.0401221518.2e82196f@posting.google.com> <40112AB2.5000102@nyc.rr.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1074874166 25254 128.59.59.56 (23 Jan 2004 16:09:26 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 23 Jan 2004 16:09:26 GMT
  15. User-Agent: slrn/0.9.7.4 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14783
  17.  
  18. In article <40112AB2.5000102@nyc.rr.com>, Jeffrey Altman wrote:
  19.  
  20. : Diane wrote:
  21. :> I have an issue connecting via ftp over SSL (ckermit over openssl)
  22. :> where the remote host uses a non-standard ftp port (21000 rather than
  23. :> 21) so I receive the following message: 421 You are not permitted to
  24. :> make this connection.  How do I change the port to use 21000 in
  25. :> ckermit?
  26. :> Any help would be appreciated.
  27. :
  28. : The 421 error is coming from your FTP server.  It means you have made
  29. : the connection and your client is not allowed to.
  30. :
  31. As for making C-Kermit use a different port, see the documentation:
  32.  
  33.   http://www.columbia.edu/kermit/ckermit80.html#ftp
  34.  
  35. Or type "help ftp open" at the C-Kermit> prompt and see:
  36.  
  37. Syntax: FTP [ OPEN ] hostname [ port ] [ switches ]
  38.   Opens a connection to the FTP server on the given host.  The default
  39.   TCP port is 21, but a different port number can be supplied if
  40.   necessary.  Optional switches are:
  41.  
  42.   /ANONYMOUS
  43.     Logs you in anonymously.
  44.   /USER:text
  45.     Supplies the given text as your username.
  46.   /PASSWORD:text
  47.     Supplies the given text as your password.  If you include a username
  48.     but omit this switch and the server requires a password, you are
  49.     prompted for it.
  50.   /ACCOUNT:text
  51.     Supplies the given text as your account, if required by the server.
  52.   /ACTIVE
  53.     Forces an active (rather than passive) connection.
  54.   /PASSIVE
  55.     Forces a passive (rather than active) connection.
  56.   /NOINIT
  57.     Inhibits sending initial REST, STRU, and MODE commands, which are
  58.     well-known standard commands, but to which some servers react badly.
  59.   /NOLOGIN
  60.     Inhibits autologin for this connection only.
  61.  
  62. - Frank
  63.